var strconv.powtab

5 uses

	strconv (current package)
		atof.go#L311: var powtab = []int{1, 3, 6, 9, 13, 16, 19, 23, 26}
		atof.go#L341: 		if d.dp >= len(powtab) {
		atof.go#L344: 			n = powtab[d.dp]
		atof.go#L351: 		if -d.dp >= len(powtab) {
		atof.go#L354: 			n = powtab[-d.dp]